home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / goobers.swf / scripts / frame_92 / PlaceObject2_55_50 / CLIPACTIONRECORD onClipEvent(mouseDown).as < prev   
Encoding:
Text File  |  2007-03-28  |  447 b   |  16 lines

  1. onClipEvent(mouseDown){
  2.    if(status == "play" || status == "boss" || status == "bez ship")
  3.    {
  4.       if(500 < getTimer() - old_time)
  5.       {
  6.          _parent.bullet.duplicateMovieClip("bullet" + depth,depth);
  7.          _parent["bullet" + depth].x = this._x;
  8.          _parent["bullet" + depth].y = this._y;
  9.          num_fired++;
  10.          depth++;
  11.          old_time = getTimer();
  12.          this.scrunch.gotoAndPlay(1);
  13.       }
  14.    }
  15. }
  16.